> f:=x->x^2-x;

[Maple Math]

> g:=x->sqrt(x);

[Maple Math]

> g(f(x));

[Maple Math]

>

>

>

> f:=x->x^2+4*x+1;

[Maple Math]

> g:=x->sqrt(x-2);

[Maple Math]

> g(f(x));

[Maple Math]

>

>

>

> f(g(x));

[Maple Math]

>

g(f(x)) = [Maple Math] e f(g(x)) = [Maple Math]

>

Considere duas funções diferentes [Maple Math] e [Maple Math]

> h:=x->3*x-8;

[Maple Math]

> m:=x->(x+8)/3;

[Maple Math]

>

>

>

> h(m(x));

[Maple Math]

> m(h(x));

[Maple Math]

>

>

>

> f:=x->1-2*x;

[Maple Math]

> g:=x->-(x+1)/2;

>

[Maple Math]

> f(g(x));

[Maple Math]

> g(f(x));

[Maple Math]

Explique se as funções f e g são inversas ou não ????????

Resp.: f e g não são inversas, pois f(g(x)) é diferente de g(f(x)) .

Se s e v são funções de t, determine se elas são inversas ou não.

> s:=t->2+1/t;

[Maple Math]

> v:=t->1/(2-t);

[Maple Math]

> s(v(t));

[Maple Math]

> v(s(t));

[Maple Math]

>

>

>

> r:=x->4*x^2-1;

[Maple Math]

> p:=x->sqrt(x);

[Maple Math]

> p(r(x));

[Maple Math]

[Maple Math] (em verde ) , [Maple Math] ( em vermelho ) e [Maple Math] ( em amarelo )

> plot({r(x),p(x),p(r(x))},x=-3..3,y=-2..10,numpoints=1000);

[Maple Plot]

[Maple Math] ]- [Maple Math] , [Maple Math] ]

[Maple Math]

[Maple Math]

[Maple Math]

[Maple Math]

>

>

>

> r(p(x));

[Maple Math]

>

>

>

>

Se a função F é dada por [Maple Math] , ache as duas funções f e g tal que [Maple Math]

> f:=x->1/x;

[Maple Math]

> g:=x->x^2+3;

[Maple Math]

> f(g(x));

[Maple Math]

>

>

>

Dada as funções [Maple Math] , [Maple Math] , [Maple Math] e [Maple Math] , expresse as seguintes composições de duas das quatros funções.

a) [Maple Math]

b) [Maple Math]

> f:=x->x-4;

[Maple Math]

> g:=x->x^2+1;

[Maple Math]

> h:=x->1/x;

[Maple Math]

> q:=x->abs(x);

[Maple Math]

>

>

> f(q(x));

[Maple Math]

> g(h(x));

[Maple Math]

>